Chat Support
Loupe - Log - Monitor - Resolve
Gibraltar.Agent Namespace / Log Class / ErrorDetail Method / ErrorDetail(String,String,String,String,Object[]) Method
An XML document (as a string) with extended details about the message.
The application subsystem or logging category that the log message is associated with, which supports a dot-delimited hierarchy (e.g. the logger name in log4net).
A simple single-line message caption. (Will not be processed for formatting.)
Additional multi-line descriptive message (or may be null) which can be a format string followed by corresponding args.
A variable number of arguments referenced by the formatted description string (or no arguments to skip formatting).

ErrorDetail(String,String,String,String,Object[]) Method
Write a detailed Error message directly to the Loupe log.
Syntax
'Declaration
 
Public Overloads Shared Sub ErrorDetail( _
   ByVal detailsXml As String, _
   ByVal category As String, _
   ByVal caption As String, _
   ByVal description As String, _
   ByVal ParamArray args() As Object _
) 
 

Parameters

detailsXml
An XML document (as a string) with extended details about the message.
category
The application subsystem or logging category that the log message is associated with, which supports a dot-delimited hierarchy (e.g. the logger name in log4net).
caption
A simple single-line message caption. (Will not be processed for formatting.)
description
Additional multi-line descriptive message (or may be null) which can be a format string followed by corresponding args.
args
A variable number of arguments referenced by the formatted description string (or no arguments to skip formatting).
Remarks

This method provides an advanced use of Loupe log messages to include an XML document (as a string) containing extended details about the message. Also see the Write() method for when XML details are not needed. This method is otherwise similar to Write().

The log message will be attributed to the caller of this method. Wrapper methods should instead call the Write() method in order to attribute the log message to their own outer callers.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also